home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / demos / REALITY / fastshadows / Makefile < prev    next >
Makefile  |  1994-08-01  |  317b  |  19 lines

  1. #!smake
  2. #
  3. # Makefile for 'shad' program
  4. #
  5. include ${ROOT}/usr/include/make/commondefs
  6.  
  7. TARGETS    = shad
  8.  
  9. LCOPTS    = -O -prototypes -float
  10. LLDLIBS = -limage -lgl -lm 
  11. CFILES    = shad.c sgiobjgl.c glshade.c matrix.c
  12.  
  13. default all: $(TARGETS)
  14.  
  15. include ${COMMONRULES}
  16.  
  17. $(TARGETS): $(OBJECTS)
  18.     $(CCF) -o $@ $(OBJECTS) $(LDFLAGS)
  19.